home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / dev / c / libiconv_src.lha / src / cp932.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-07  |  4.9 KB  |  169 lines

  1.  
  2. /*
  3.  * CP932
  4.  */
  5.  
  6. /*
  7.  * Microsoft CP932 is a slightly extended version of SHIFT-JIS.
  8.  * The differences between the EASTASIA/JIS/SHIFTJIS.TXT and the
  9.  * VENDORS/MICSFT/WINDOWS/CP932.TXT tables found on ftp.unicode.org are
  10.  * as follows:
  11.  *
  12.  * 1. CP932 uses ASCII, not JISX0201 Roman.
  13.  *
  14.  * 2. Some characters in the JISX0208 range are defined differently:
  15.  *
  16.  *     code   SHIFTJIS.TXT                   CP932.TXT
  17.  *    0x815F  0x005C # REVERSE SOLIDUS       0xFF3C # FULLWIDTH REVERSE SOLIDUS
  18.  *    0x8160  0x301C # WAVE DASH             0xFF5E # FULLWIDTH TILDE
  19.  *    0x8161  0x2016 # DOUBLE VERTICAL LINE  0x2225 # PARALLEL TO
  20.  *    0x817C  0x2212 # MINUS SIGN            0xFF0D # FULLWIDTH HYPHEN-MINUS
  21.  *    0x8191  0x00A2 # CENT SIGN             0xFFE0 # FULLWIDTH CENT SIGN
  22.  *    0x8192  0x00A3 # POUND SIGN            0xFFE1 # FULLWIDTH POUND SIGN
  23.  *    0x81CA  0x00AC # NOT SIGN              0xFFE2 # FULLWIDTH NOT SIGN
  24.  *
  25.  *    We don't implement these changes. SHIFTJIS.TXT makes more sense.
  26.  *
  27.  * 3. A few new rows. See cp932ext.h.
  28.  */
  29.  
  30. #include "cp932ext.h"
  31.  
  32. /*
  33.    Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):
  34.    Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.
  35.    0x81 <= s1 <= 0x9F || 0xE0 <= s1 <= 0xEA,
  36.    0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,
  37.    0x21 <= c1 <= 0x74, 0x21 <= c2 <= 0x7E.
  38.    Invariant:
  39.      94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)
  40.      = 94*(c1-0x21)+(c2-0x21)
  41.    Conversion (s1,s2) -> (c1,c2):
  42.      t1 := (s1 < 0xE0 ? s1-0x81 : s1-0xC1)
  43.      t2 := (s2 < 0x80 ? s2-0x40 : s2-0x41)
  44.      c1 := 2*t1 + (t2 < 0x5E ? 0 : 1) + 0x21
  45.      c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21
  46.    Conversion (c1,c2) -> (s1,s2):
  47.      t1 := (c1 - 0x21) >> 1
  48.      t2 := ((c1 - 0x21) & 1) * 0x5E + (c2 - 0x21)
  49.      s1 := (t1 < 0x1F ? t1+0x81 : t1+0xC1)
  50.      s2 := (t2 < 0x3F ? t2+0x40 : t2+0x41)
  51.  */
  52.  
  53. static int
  54. cp932_mbtowc (conv_t conv, wchar_t *pwc, const unsigned char *s, int n)
  55. {
  56.   unsigned char c = *s;
  57.   if (c < 0x80)
  58.     return ascii_mbtowc(conv,pwc,s,n);
  59.   else if (c >= 0xa1 && c <= 0xdf)
  60.     return jisx0201_mbtowc(conv,pwc,s,n);
  61.   else {
  62.     unsigned char s1, s2;
  63.     s1 = c;
  64.     if ((s1 >= 0x81 && s1 <= 0x9f && s1 != 0x87) || (s1 >= 0xe0 && s1 <= 0xea)) {
  65.       if (n < 2)
  66.         return RET_TOOFEW(0);
  67.       s2 = s[1];
  68.       if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {
  69.         unsigned char t1 = (s1 < 0xe0 ? s1-0x81 : s1-0xc1);
  70.         unsigned char t2 = (s2 < 0x80 ? s2-0x40 : s2-0x41);
  71.         unsigned char buf[2];
  72.         buf[0] = 2*t1 + (t2 < 0x5e ? 0 : 1) + 0x21;
  73.         buf[1] = (t2 < 0x5e ? t2 : t2-0x5e) + 0x21;
  74.         return jisx0208_mbtowc(conv,pwc,buf,2);
  75.       }
  76.     } else if ((s1 == 0x87) || (s1 >= 0xed && s1 <= 0xee) || (s1 >= 0xfa)) {
  77.       if (n < 2)
  78.         return RET_TOOFEW(0);
  79.       return cp932ext_mbtowc(conv,pwc,s,2);
  80.     } else if (s1 >= 0xf0 && s1 <= 0xf9) {
  81.       /* User-defined range. See
  82.        * Ken Lunde's "CJKV Information Processing", table 4-66, p. 206. */
  83.       if (n < 2)
  84.         return RET_TOOFEW(0);
  85.       s2 = s[1];
  86.       if ((s2 >= 0x40 && s2 <= 0x7e) || (s2 >= 0x80 && s2 <= 0xfc)) {
  87.         *pwc = 0xe000 + 188*(s1 - 0xf0) + (s2 < 0x80 ? s2-0x40 : s2-0x41);
  88.         return 2;
  89.       }
  90.     }
  91.     return RET_ILSEQ;
  92.   }
  93. }
  94.  
  95. static int
  96. cp932_wctomb (conv_t conv, unsigned char *r, wchar_t wc, int n)
  97. {
  98.   unsigned char buf[2];
  99.   int ret;
  100.  
  101.   /* Try ASCII. */
  102.   ret = ascii_wctomb(conv,buf,wc,1);
  103.   if (ret != RET_ILSEQ) {
  104.     unsigned char c;
  105.     if (ret != 1) abort();
  106.     c = buf[0];
  107.     if (c < 0x80) {
  108.       r[0] = c;
  109.       return 1;
  110.     }
  111.   }
  112.  
  113.   /* Try JIS X 0201-1976 Katakana. */
  114.   ret = jisx0201_wctomb(conv,buf,wc,1);
  115.   if (ret != RET_ILSEQ) {
  116.     unsigned char c;
  117.     if (ret != 1) abort();
  118.     c = buf[0];
  119.     if (c >= 0xa1 && c <= 0xdf) {
  120.       r[0] = c;
  121.       return 1;
  122.     }
  123.   }
  124.  
  125.   /* Try JIS X 0208-1990. */
  126.   ret = jisx0208_wctomb(conv,buf,wc,2);
  127.   if (ret != RET_ILSEQ) {
  128.     unsigned char c1, c2;
  129.     if (ret != 2) abort();
  130.     if (n < 2)
  131.       return RET_TOOSMALL;
  132.     c1 = buf[0];
  133.     c2 = buf[1];
  134.     if ((c1 >= 0x21 && c1 <= 0x74) && (c2 >= 0x21 && c2 <= 0x7e)) {
  135.       unsigned char t1 = (c1 - 0x21) >> 1;
  136.       unsigned char t2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);
  137.       r[0] = (t1 < 0x1f ? t1+0x81 : t1+0xc1);
  138.       r[1] = (t2 < 0x3f ? t2+0x40 : t2+0x41);
  139.       return 2;
  140.     }
  141.   }
  142.  
  143.   /* Try CP932 extensions. */
  144.   ret = cp932ext_wctomb(conv,buf,wc,2);
  145.   if (ret != RET_ILSEQ) {
  146.     if (ret != 2) abort();
  147.     if (n < 2)
  148.       return RET_TOOSMALL;
  149.     r[0] = buf[0];
  150.     r[1] = buf[1];
  151.     return 2;
  152.   }
  153.  
  154.   /* User-defined range. See
  155.    * Ken Lunde's "CJKV Information Processing", table 4-66, p. 206. */
  156.   if (wc >= 0xe000 && wc < 0xe758) {
  157.     unsigned char c1, c2;
  158.     if (n < 2)
  159.       return RET_TOOSMALL;
  160.     c1 = (unsigned int) (wc - 0xe000) / 188;
  161.     c2 = (unsigned int) (wc - 0xe000) % 188;
  162.     r[0] = c1+0xf0;
  163.     r[1] = (c2 < 0x3f ? c2+0x40 : c2+0x41);
  164.     return 2;
  165.   }
  166.  
  167.   return RET_ILSEQ;
  168. }
  169.